From 4f24c8569c454918adf16ba4e36aff2df8270bb3 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 29 Oct 2015 13:56:18 +0100 Subject: [PATCH] placessidebar: do not crash if uris is NULL On Drag'n'Drop actions across system boundaries (VM host to guest), the happen to be null. https://bugzilla.gnome.org/show_bug.cgi?id=757298 --- gtk/gtkplacessidebar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkplacessidebar.c b/gtk/gtkplacessidebar.c index 42179c3333..8dc6d301f1 100644 --- a/gtk/gtkplacessidebar.c +++ b/gtk/gtkplacessidebar.c @@ -1708,7 +1708,7 @@ build_file_list_from_uris (const gchar **uris) gint i; result = NULL; - for (i = 0; uris[i]; i++) + for (i = 0; uris && uris[i]; i++) { GFile *file; -- 2.30.2